home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
Borland
/
Borland C++ V5.02
/
GDIDEMO.PAK
/
DEMOBASE.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-06
|
765b
|
26 lines
//----------------------------------------------------------------------------
// ObjectWindows
// Copyright (c) 1991, 1995 by Borland International, All Rights Reserved
//
// Base window classes for the GDI demo windows
//----------------------------------------------------------------------------
#if !defined(DEMOBASE_H)
#define DEMOBASE_H
#include <owl/mdichild.h>
class TBaseDemoWindow : public TWindow {
public:
TBaseDemoWindow() : TWindow(0, 0, 0) {}
virtual void TimerTick() {}
DECLARE_CASTABLE;
};
// TBaseDemoWindow.TimerTick is a trivial method that gets called
// whenever application receives a EvTimer. Descendants will override
// this procedure if they need timer messages.
#endif // DEMOBASE_H